home *** CD-ROM | disk | FTP | other *** search
/ United Public Domain Gold 2 / United Public Domain Gold 2.iso / utilities / pu247.dms / pu247.adf / Intuition / Gadgets / Example2.c < prev    next >
C/C++ Source or Header  |  1992-05-06  |  10KB  |  264 lines

  1. /***********************************************************/
  2. /*                                                         */
  3. /* Amiga C Encyclopedia (ACE) V3.0      Amiga C Club (ACC) */
  4. /* -------------------------------      ------------------ */
  5. /*                                                         */
  6. /* Book:    ACM Intuition               Amiga C Club       */
  7. /* Chapter: Gadgets                     Tulevagen 22       */
  8. /* File:    Example2.c                  181 41  LIDINGO    */
  9. /* Author:  Anders Bjerin               SWEDEN             */
  10. /* Date:    92-05-01                                       */
  11. /* Version: 1.10                                           */
  12. /*                                                         */
  13. /*   Copyright 1992, Anders Bjerin - Amiga C Club (ACC)    */
  14. /*                                                         */
  15. /* Registered members may use this program freely in their */
  16. /*     own commercial/noncommercial programs/articles.     */
  17. /*                                                         */
  18. /***********************************************************/
  19.  
  20. /* This program will open a normal window which is connected to the     */
  21. /* Workbench Screen. The window will use all System Gadgets, and will   */
  22. /* close first when the user has selected the System gadget Close       */
  23. /* window. Inside the window we have put a Boolean gadget with the text */
  24. /* "PRESS ME".                                                          */
  25.  
  26.  
  27.  
  28. #include <intuition/intuition.h>
  29.  
  30.  
  31.  
  32. struct IntuitionBase *IntuitionBase;
  33.  
  34.  
  35.  
  36. /* The coordinates for the box: */
  37. SHORT my_points[]=
  38. {
  39.    0,  0, /* Start at position (0,0) */
  40.   70,  0, /* Draw a line to the right to position (70,0) */
  41.   70, 10, /* Draw a line down to position (70,10) */
  42.    0, 10, /* Draw a line to the right to position (0,10) */
  43.    0,  0  /* Finish off by drawing a line up to position (0,0) */ 
  44. };
  45.  
  46. /* The Border structure: */
  47. struct Border my_border=
  48. {
  49.   0, 0,        /* LeftEdge, TopEdge. */
  50.   1,           /* FrontPen, colour register 1. */
  51.   0,           /* BackPen, for the moment unused. */
  52.   JAM1,        /* DrawMode, draw the lines with colour 1. */
  53.   5,           /* Count, 5 pair of coordinates in the array. */
  54.   my_points,   /* XY, pointer to the array with the coordinates. */
  55.   NULL,        /* NextBorder, no other Border structures are connected. */
  56. };
  57.  
  58.  
  59.  
  60. /* The text string: */
  61. UBYTE my_string[]="PRESS ME";
  62.  
  63. /* The IntuiText structure: */
  64. struct IntuiText my_text=
  65. {
  66.   1,         /* FrontPen, colour register 1. */
  67.   0,         /* BackPen, colour register 0. */
  68.   JAM1,      /* DrawMode, draw the characters with colour 1, do not */
  69.              /* change the background. */ 
  70.   4, 2,      /* LeftEdge, TopEdge. */
  71.   NULL,      /* ITextFont, use default font. */
  72.   my_string, /* IText, the text that will be printed. */
  73.              /* (Remember my_text = &my_text[0].) */
  74.   NULL,      /* NextText, no other IntuiText structures are connected. */
  75. };
  76.  
  77.  
  78.  
  79. struct Gadget my_gadget=
  80. {
  81.   NULL,          /* NextGadget, no more gadgets in the list. */
  82.   40,            /* LeftEdge, 40 pixels out. */
  83.   20,            /* TopEdge, 20 lines down. */
  84.   71,            /* Width, 71 pixels wide. */
  85.   11,            /* Height, 11 pixels lines heigh. */
  86.   GADGHCOMP,     /* Flags, when this gadget is highlighted, the gadget */
  87.                  /* will be rendered in the complement colours. */
  88.                  /* (Colour 0 (00) will be changed to colour 3 (11) */
  89.                  /* (Colour 1 (01)           - " -           2 (10) */
  90.                  /* (Colour 2 (10)           - " -           1 (01) */
  91.                  /* (Colour 3 (11)           - " -           0 (00) */  
  92.   GADGIMMEDIATE| /* Activation, our program will recieve a message when */
  93.   RELVERIFY,     /* the user has selected this gadget, and when the user */
  94.                  /* has released it. */ 
  95.   BOOLGADGET,    /* GadgetType, a Boolean gadget. */
  96.   (APTR) &my_border, /* GadgetRender, a pointer to our Border structure. */
  97.                  /* (Since Intuition does not know if this will be a */
  98.                  /* pointer to a Border structure or an Image structure, */
  99.                  /* Intuition expects an APTR (normal memory pointer). */
  100.                  /* We will therefore have to calm down the compiler by */
  101.                  /* doing some "casting".) */
  102.   NULL,          /* SelectRender, NULL since we do not supply the gadget */
  103.                  /* with an alternative image. (We complement the */
  104.                  /* colours instead) */
  105.   &my_text,      /* GadgetText, a pointer to our IntuiText structure. */
  106.                  /* (See chapter 3 GRAPHICS for more information) */
  107.   NULL,          /* MutualExclude, no mutual exclude. */
  108.   NULL,          /* SpecialInfo, NULL since this is a Boolean gadget. */
  109.                  /* (It is not a Proportional/String or Integer gdget) */
  110.   0,             /* GadgetID, no id. */
  111.   NULL           /* UserData, no user data connected to the gadget. */
  112. };
  113.  
  114.  
  115.  
  116. /* Declare a pointer to a Window structure: */ 
  117. struct Window *my_window;
  118.  
  119. /* Declare and initialize your NewWindow structure: */
  120. struct NewWindow my_new_window=
  121. {
  122.   50,            /* LeftEdge    x position of the window. */
  123.   25,            /* TopEdge     y positio of the window. */
  124.   200,           /* Width       200 pixels wide. */
  125.   100,           /* Height      100 lines high. */
  126.   0,             /* DetailPen   Text should be drawn with colour reg. 0 */
  127.   1,             /* BlockPen    Blocks should be drawn with colour reg. 1 */
  128.   CLOSEWINDOW|   /* IDCMPFlags  The window will give us a message if the */
  129.                  /*             user has selected the Close window gad, */
  130.   GADGETDOWN|    /*             or a gadget has been pressed on, or */
  131.   GADGETUP,      /*             a gadge has been released. */
  132.   SMART_REFRESH| /* Flags       Intuition should refresh the window. */
  133.   WINDOWCLOSE|   /*             Close Gadget. */
  134.   WINDOWDRAG|    /*             Drag gadget. */
  135.   WINDOWDEPTH|   /*             Depth arrange Gadgets. */
  136.   WINDOWSIZING|  /*             Sizing Gadget. */
  137.   ACTIVATE,      /*             The window should be Active when opened. */
  138.   &my_gadget,    /* FirstGadget A pointer to my_gadget structure. */
  139.   NULL,          /* CheckMark   Use Intuition's default CheckMark. */
  140.   "TOUCH ME",    /* Title       Title of the window. */
  141.   NULL,          /* Screen      Connected to the Workbench Screen. */
  142.   NULL,          /* BitMap      No Custom BitMap. */
  143.   140,           /* MinWidth    We will not allow the window to become */
  144.   50,            /* MinHeight   smaller than 140 x 50, and not bigger */
  145.   300,           /* MaxWidth    than 300 x 200. */
  146.   200,           /* MaxHeight */
  147.   WBENCHSCREEN   /* Type        Connected to the Workbench Screen. */
  148. };
  149.  
  150.  
  151.  
  152. /*************************************************************************/
  153. /* Extra information:                                                    */
  154. /* You first need to decide what messages the gadgets should report.     */
  155. /* In this case we told the Boolean gadget to send a message if the user */
  156. /* pressed on it, and if the user released the gadget while still        */
  157. /* pointing at it. (We sat the flags GADGIMMEDIATE and RELVERIFY)        */
  158. /*                                                                       */
  159. /* The important thing to remember is that we need to tell the window    */
  160. /* what messages should be allowed to pass by. It was therefore we       */
  161. /* needed to set the IDCMP flags GADGETUP and GADGETDOWN in the          */
  162. /* IDCMPFlags field in the NewWindow structure.                          */
  163. /*************************************************************************/
  164.  
  165.  
  166.  
  167. main()
  168. {
  169.   /* Boolean variable used for the while loop: */
  170.   BOOL close_me;
  171.  
  172.   /* Declare a variable in which we will store the IDCMP flag: */
  173.   ULONG class;
  174.   
  175.   /* Declare a pointer to an IntuiMessage structure: */
  176.   struct IntuiMessage *my_message;
  177.  
  178.  
  179.  
  180.   /* Before we can use Intuition we need to open the Intuition Library: */
  181.   IntuitionBase = (struct IntuitionBase *)
  182.     OpenLibrary( "intuition.library", 0 );
  183.   
  184.   if( IntuitionBase == NULL )
  185.     exit(); /* Could NOT open the Intuition Library! */
  186.  
  187.  
  188.  
  189.   /* We will now try to open the window: */
  190.   my_window = (struct Window *) OpenWindow( &my_new_window );
  191.   
  192.   /* Have we opened the window succesfully? */
  193.   if(my_window == NULL)
  194.   {
  195.     /* Could NOT open the Window! */
  196.     
  197.     /* Close the Intuition Library since we have opened it: */
  198.     CloseLibrary( IntuitionBase );
  199.  
  200.     exit();  
  201.   }
  202.  
  203.  
  204.  
  205.   /* We have opened the window, and everything seems to be OK. */
  206.  
  207.  
  208.  
  209.   close_me = FALSE;
  210.  
  211.   /* Stay in the while loop until the user has selected the Close window */
  212.   /* gadget: */
  213.   while( close_me == FALSE )
  214.   {
  215.     /* Wait until we have recieved a message: */
  216.     Wait( 1 << my_window->UserPort->mp_SigBit );
  217.  
  218.     /* Collect the message: */
  219.     my_message = (struct IntuiMessage *) GetMsg( my_window->UserPort );
  220.  
  221.     /* Have we collected the message sucessfully? */
  222.     if(my_message)
  223.     {
  224.       /* After we have collected the message we can read it, and save any */
  225.       /* important values which we maybe want to check later: */
  226.       class = my_message->Class;
  227.  
  228.       /* After we have read it we reply as fast as possible: */
  229.       /* REMEMBER! Never try to read a message after you have replied! */
  230.       /* Some other process has maybe changed it. */
  231.       ReplyMsg( my_message );
  232.  
  233.       /* Check which IDCMP flag was sent: */
  234.       switch( class )
  235.       {
  236.         case CLOSEWINDOW:  /* The user selected the Close window gadget! */
  237.                close_me=TRUE;
  238.                break;
  239.              
  240.         case GADGETDOWN:   /* The user has pressed on the Boolean gadget. */
  241.                printf("Down\n");
  242.                break;
  243.              
  244.         case GADGETUP:     /* The user has released the Boolean gadget. */
  245.                printf("Up\n");
  246.                break;
  247.       }
  248.     }
  249.   }
  250.  
  251.  
  252.  
  253.   /* We should always close the windows we have opened before we leave: */
  254.   CloseWindow( my_window );
  255.  
  256.  
  257.  
  258.   /* Close the Intuition Library since we have opened it: */
  259.   CloseLibrary( IntuitionBase );
  260.   
  261.   /* THE END */
  262. }
  263.  
  264.